From f89cf3e09727157a04c0c6b325c0c432d0a91529 Mon Sep 17 00:00:00 2001 From: Martin Rudalics Date: Mon, 2 Jul 2007 05:55:01 +0000 Subject: [PATCH] (help-make-xrefs): Skip spaces too when skipping tabs. --- lisp/help-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/help-mode.el b/lisp/help-mode.el index 98b27623ce0..075b893ad6f 100644 --- a/lisp/help-mode.el +++ b/lisp/help-mode.el @@ -487,7 +487,7 @@ that." ;; Skip a single blank line. (and (eolp) (forward-line)) (end-of-line) - (skip-chars-backward "^\t\n") + (skip-chars-backward "^ \t\n") (if (and (>= (current-column) col) (looking-at "\\(\\sw\\|-\\)+$")) (let ((sym (intern-soft (match-string 0)))) -- 2.30.2